home *** CD-ROM | disk | FTP | other *** search
/ Nebula 1 / Nebula One.iso / Utilities / Workspace / OpenApps / Source / OpenApps_main.m < prev    next >
Text File  |  1995-06-12  |  550b  |  21 lines

  1. /*
  2. ** OpenApps_main.m
  3. ** Larry Shupe
  4. ** April 1990
  5. **
  6. ** A one line program to open the user's ~/Apps directory from the Workspace.
  7. ** Put this application in your dock and create symbolic links in your ~/Apps
  8. ** directory to all your most used programs.  Doing this will give you quick
  9. ** access to programs that are not in your dock.  You can create a symbolic
  10. ** link in the Workspace by control dragging a file's icon into your ~/Apps 
  11. ** folder.
  12. */
  13.  
  14. #import <stdlib.h>
  15.  
  16. void main(int argc, char *argv[])
  17. {
  18.   system("open ~/Apps"); 
  19.   exit(0);
  20. }
  21.